Golang : Send data to /dev/null a.k.a blackhole with ioutil.Discard
In Unix/Linux system administration, there are times when the system administrator needs to reduce the size of a file to 0 immediately. Such situation usually involves log files that had taken up all the available disk space and caused other running applications that need disk space to behave oddly.
This is usually done by pointing the Unix/Linux's "black hole" (/dev/null) to the offending file. Such as:
$cat /dev/null > somefile.log
or sending an application logs to /dev/null
In Golang, the ioutil.Discard
variable is similar to /dev/null
and we can use it to send unwanted log output or basically any unwanted data.
package main
import (
"io/ioutil"
"log"
"os"
)
func main() {
log.Println("You can see this log message")
// direct all log messages to /dev/null a.k.a Blackhole
log.SetOutput(ioutil.Discard)
log.Println("But not this log message!")
}
References:
https://www.socketloop.com/tutorials/golang-how-to-save-log-messages-to-file
See also : Golang : Secure file deletion with wipe example
By Adam Ng(黃武俊)
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+14.9k Golang : Find commonalities in two slices or arrays example
+5.4k Javascript : Shuffle or randomize array example
+37.7k Golang : Comparing date or timestamp
+8.2k Golang : Routes multiplexer routing example with regular expression control
+22.3k Golang : Convert seconds to minutes and remainder seconds
+7.9k Swift : Convert (cast) String to Double
+20.1k Golang : How to run your code only once with sync.Once object
+15.3k Golang : How to get Unix file descriptor for console and file
+42k Golang : How do I convert int to uint8?
+6.6k Golang : Totalize or add-up an array or slice example
+4.8k Linux/MacOSX : How to symlink a file?
+16.5k Golang : Convert slice to array